home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / virus / VChck655.lha / InstallVC < prev    next >
Text File  |  1995-02-11  |  2KB  |  94 lines

  1. ; $VER: Install Virus_Checker V1.0 (4 June 1993)
  2. ; This script can be distributed with Virus_Checker Program by
  3. ; John Veldthuis
  4.  
  5. ; ask where to install virus_checker
  6. (set @default-dest
  7.  (askdir
  8.    (prompt "Please select the Directory where you would like to install"
  9.            " Virus_Checker. ")
  10.    (help @askdir-help)
  11.    (default "SYS:")
  12.  )
  13. )
  14.  
  15. (working "Installing Virus_Checker Program")
  16. (copyfiles
  17.     (prompt "")
  18.     (help @copyfiles-help)
  19.     (source "Virus_Checker")
  20.     (dest @default-dest)
  21.     (infos)
  22. )
  23.  
  24. (copyfiles
  25.     (prompt "Intall Brainfile to L:")
  26.     (help @copyfiles-help)
  27.     (source "l/VirusChecker.brain")
  28.     (dest "L:")
  29. )
  30.  
  31. (copyfiles
  32.     (prompt "Would you like to install the documentation for Virus_Checker"
  33.             "which is in amigaguide standard.")
  34.     (help @copyfiles-help)
  35.     (source "Virus_Checker.guide")
  36.     (dest @default-dest)
  37.     (confirm)
  38.     (infos)
  39. )
  40.  
  41. (working "Installing Bootblock.library")
  42.  
  43. (copylib
  44.     (prompt "")
  45.     (help @copylib-help)
  46.     (source "libs/Bootblock.library")
  47.     (dest "libs:")
  48.     (confirm)
  49. )
  50.  
  51.  
  52. (copyfiles
  53.     (prompt "")
  54.     (help @copyfiles-help)
  55.     (source "l/Bootblock.brainfile")
  56.     (dest "L:")
  57. )
  58.  
  59. (working "Installing  unpack.library")
  60. (copylib
  61.     (prompt "")
  62.     (help @copylib-help)
  63.     (source "libs/unpack.library")
  64.     (dest "libs:")
  65.     (confirm)
  66. )
  67.  
  68. (working "Installing xfdmaster.library")
  69. (copylib
  70.     (prompt "")
  71.     (help @copylib-help)
  72.     (source "libs/xfdmaster.library")
  73.     (dest "libs:")
  74.     (confirm)
  75. )
  76.  
  77. (copyfiles
  78.     (prompt "Shall I install the XFD extra crunchers")
  79.     (help @copyfiles-help)
  80.     (source "libs/XFD")
  81.     (dest "LIBS:XFD")
  82.     (all)
  83.     (confirm)
  84. )
  85.  
  86. (startup @app-name
  87.     (prompt "Shall I add Virus_Checker to your s:startup-sequence"
  88.         "/s:user-startup so that it will be run each time"
  89.         " you turn your Amiga on")
  90.     (help @startup-help)
  91.     (command "Virus_Checker")
  92. )
  93. (exit)
  94.